From ce6dad00689db3c5f009d2b536ec359e9cbfa105 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Tue, 25 Jul 2006 15:33:00 +0100 Subject: [PATCH] Add versioning info to xenstore library. From: Mark McLoughlin Signed-off-by: Keir Fraser --- tools/xenstore/Makefile | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/tools/xenstore/Makefile b/tools/xenstore/Makefile index 11e6b93196..a504ac2645 100644 --- a/tools/xenstore/Makefile +++ b/tools/xenstore/Makefile @@ -2,6 +2,9 @@ XEN_ROOT=../.. include $(XEN_ROOT)/tools/Rules.mk XEN_LIBXC = $(XEN_ROOT)/tools/libxc +MAJOR = 3.0 +MINOR = 0 + INSTALL = install INSTALL_DATA = $(INSTALL) -m0644 INSTALL_PROG = $(INSTALL) -m0755 @@ -86,15 +89,20 @@ xs_test_lib.o: xs.c talloc_test.o: talloc.c $(COMPILE.c) -o $@ $< -libxenstore.so: xs.opic xs_lib.opic - $(CC) $(CFLAGS) $(LDFLAGS) -Wl,-soname -Wl,libxenstore.so -shared -o $@ $^ -lpthread +libxenstore.so: libxenstore.so.$(MAJOR) + ln -sf $< $@ +libxenstore.so.$(MAJOR): libxenstore.so.$(MAJOR).$(MINOR) + ln -sf $< $@ + +libxenstore.so.$(MAJOR).$(MINOR): xs.opic xs_lib.opic + $(CC) $(CFLAGS) $(LDFLAGS) -Wl,-soname -Wl,libxenstore.so.$(MAJOR) -shared -o $@ $^ -lpthread -libxenstore.a: libxenstore.so +libxenstore.a: xs.o xs_lib.o ar rcs libxenstore.a $^ .PHONY: clean clean: testsuite-clean - rm -f *.o *.opic *.so + rm -f *.o *.opic *.so* rm -f xenstored xs_random xs_stress xs_crashme rm -f xs_test xenstored_test xs_tdb_dump xenstore-control xenstore-ls rm -f $(CLIENTS) @@ -174,7 +182,9 @@ install: all $(INSTALL_PROG) xenstore-control $(DESTDIR)/usr/bin $(INSTALL_PROG) xenstore-ls $(DESTDIR)/usr/bin $(INSTALL_DIR) -p $(DESTDIR)/usr/$(LIBDIR) - $(INSTALL_PROG) libxenstore.so* $(DESTDIR)/usr/$(LIBDIR) + $(INSTALL_PROG) libxenstore.so.$(MAJOR).$(MINOR) $(DESTDIR)/usr/$(LIBDIR) + ln -sf libxenstore.so.$(MAJOR).$(MINOR) $(DESTDIR)/usr/$(LIBDIR)/libxenstore.so.$(MAJOR) + ln -sf libxenstore.so.$(MAJOR) $(DESTDIR)/usr/$(LIBDIR)/libxenstore.so $(INSTALL_DATA) libxenstore.a $(DESTDIR)/usr/$(LIBDIR) $(INSTALL_DATA) xs.h $(DESTDIR)/usr/include $(INSTALL_DATA) xs_lib.h $(DESTDIR)/usr/include -- 2.30.2